home *** CD-ROM | disk | FTP | other *** search
/ Mac Expert 1995 Winter / Mac Expert - Winter 95.iso / Les fichiers / P.I.M.s / PostNet! v2.0 ƒ / PostNet! User Docs / PostNet! User Docs.rsrc / TEXT_139_aText.txt < prev    next >
Text File  |  1992-05-18  |  472b  |  10 lines

  1. Advanced FileMaker Pro Formula
  2.  
  3. If your mail list contains a mixture of ZIP+4 and 5-digit ZIP codes you can use the following formula to print barcodes on both regardless of ZIP length:
  4.  
  5. Change the calculation in the  field called BARcode to  the following formula:
  6.  
  7. If (Length (ZIPcode) = 5,"!" & Left (ZIPcode,5) & CorrectionDigit & "!","!" & Left (ZIPcode,5) & Right (ZIPcode,4) & CorrectionDigit & "!")
  8.  
  9. Make sure you designate the result of this calculation as text.
  10.